Skip to content
This repository has been archived by the owner on Jun 27, 2019. It is now read-only.

2216 - 3 #280

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open

2216 - 3 #280

wants to merge 3 commits into from

Conversation

an-korn
Copy link
Contributor

@an-korn an-korn commented Jul 27, 2018

Номер

2216

Номер задания

3

Ссылка на видео с демо

https://www.youtube.com/watch?v=UrSibM8d2Dw

Комментарии


.error_message {
padding-top: 3%;
color: red

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Declaration should be terminated by a semicolon
Color red should be written in hexadecimal form as #ff0000
Color literals like red should only be used in variable declarations; they should be referred to via variable everywhere else.

}

.error_message {
padding-top: 3%;

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Properties should be ordered color, padding-top

width: 50%
}

.error_message {

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Selector error_message should be written in lowercase with hyphens

}

#address {
width: 50%

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Declaration should be terminated by a semicolon

width: 30%
}

#address {

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Avoid using id selectors

h1 {
font-size: 200%;
padding-top: 1%;
color: #fbffc9;

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Color literals like #fbffc9 should only be used in variable declarations; they should be referred to via variable everywhere else.

}

h1 {
font-size: 200%;

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Properties should be ordered color, font-size, padding-top

color: #fbffc9;
}

main, header, footer {

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Each selector in a comma sequence should be on its own single line


.copyright {
padding: 2%;
color: #fbffc9;

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Color literals like #fbffc9 should only be used in variable declarations; they should be referred to via variable everywhere else.

}

.copyright {
padding: 2%;

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Properties should be ordered color, padding


.error_message {
padding-top: 3%;
color: red

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Declaration should be terminated by a semicolon
Color red should be written in hexadecimal form as #ff0000
Color literals like red should only be used in variable declarations; they should be referred to via variable everywhere else.

}

.error_message {
padding-top: 3%;

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Properties should be ordered color, padding-top

width: 50%
}

.error_message {

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Selector error_message should be written in lowercase with hyphens

}

#address {
width: 50%

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Declaration should be terminated by a semicolon

width: 30%
}

#address {

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Avoid using id selectors

h1 {
font-size: 200%;
padding-top: 1%;
color: #fbffc9;

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Color literals like #fbffc9 should only be used in variable declarations; they should be referred to via variable everywhere else.

}

h1 {
font-size: 200%;

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Properties should be ordered color, font-size, padding-top

color: #fbffc9;
}

main, header, footer {

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Each selector in a comma sequence should be on its own single line


.copyright {
padding: 2%;
color: #fbffc9;

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Color literals like #fbffc9 should only be used in variable declarations; they should be referred to via variable everywhere else.

}

.copyright {
padding: 2%;

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Properties should be ordered color, padding

}

.error-message {
padding-top: 3%;

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Properties should be ordered color, padding-top

padding-top: 5%;
}

.look_sub {

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Selector look_sub should be written in lowercase with hyphens

}

table {
border-collapse: collapse;

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Properties should be ordered border, border-collapse, margin

}

h1 {
margin: 0;

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Properties should be ordered color, font-size, margin, padding, padding-top

}

.copyright {
padding: 2%;

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Properties should be ordered color, padding

}

main{
width: 100%;

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Properties should be ordered background-color, height, text-align, width

text-align: center;
}

main{

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Opening curly brace { should be preceded by one space

}

footer {
position: fixed;

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Properties should be ordered background-color, bottom, height, margin, padding, position, text-align, width

}

body {
margin: 0;

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Properties should be ordered background-color, height, margin, padding, width

$table-color: rgb(0, 0, 0);

html {
position: relative;

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Properties should be ordered background-color, height, min-height, position, width

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants